home *** CD-ROM | disk | FTP | other *** search
/ Aminet 28 / Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso / Aminet / game / shoot / athrust.lha / AmigaThrust / src / font5x5.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-09-05  |  466 b   |  23 lines

  1.  
  2. /* Written by Peter Ekberg, peda@lysator.liu.se */
  3.  
  4. #ifndef FONT5X5_H
  5. #define FONT5X5_H
  6.  
  7. #include "thrust_t.h"
  8.  
  9. extern byte font[256][6];
  10.  
  11. #define gcenter(y,s) (printgs(160-(gstrlen(s)>>1), (y), (s)))
  12.  
  13. extern byte chcolor, chpaper, chflag;
  14.  
  15. #ifdef __STDC__
  16. void printgc(int x, int y, byte ch);
  17. int printgs(int x, int y, char *string);
  18. int readgs(int x, int y, char string[], int maxc, int maxp, char flag);
  19. int gstrlen(char *string);
  20. #endif
  21.  
  22. #endif /* FONT5X5_H */
  23.